vendor/golang.org/x/text/unicode/bidi.paragraph.matchingPDI (field)

11 uses

	vendor/golang.org/x/text/unicode/bidi (current package)
		core.go#L88: 	matchingPDI []int
		core.go#L205: 	p.matchingPDI = make([]int, p.Len())
		core.go#L212: 	for i := range p.matchingPDI {
		core.go#L213: 		p.matchingPDI[i] = -1
		core.go#L222: 						p.matchingPDI[i] = j
		core.go#L228: 			if p.matchingPDI[i] == -1 {
		core.go#L229: 				p.matchingPDI[i] = p.Len()
		core.go#L249: 			i = p.matchingPDI[i] // skip over to the matching PDI
		core.go#L318: 				isRTL = (p.determineParagraphEmbeddingLevel(i+1, p.matchingPDI[i]) == 1)
		core.go#L802: 				if lastT.in(LRI, RLI, FSI) && p.matchingPDI[last] != p.Len() {
		core.go#L803: 					run = levelRuns[runForCharacter[p.matchingPDI[last]]]